func html/template.htmlReplacer

8 uses

	html/template (current package)
		html.go#L21: 		return htmlReplacer(stripTags(s), htmlNospaceNormReplacementTable, false)
		html.go#L23: 	return htmlReplacer(s, htmlNospaceReplacementTable, false)
		html.go#L30: 		return htmlReplacer(stripTags(s), htmlNormReplacementTable, true)
		html.go#L32: 	return htmlReplacer(s, htmlReplacementTable, true)
		html.go#L39: 		return htmlReplacer(s, htmlNormReplacementTable, true)
		html.go#L41: 	return htmlReplacer(s, htmlReplacementTable, true)
		html.go#L50: 	return htmlReplacer(s, htmlReplacementTable, true)
		html.go#L144: func htmlReplacer(s string, replacementTable []string, badRunes bool) string {